home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 25 / MacFormat n. 25 (Spain) / MacFormat 25.bin / mac / Shareware / Programación / pipes ƒ / pipe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-03  |  103 b   |  8 lines

  1. #ifndef PIPE
  2. #define PIPE
  3.  
  4. FILE popen(const char *fn, const char *mode);
  5. int pclose(FILE *pf);
  6.  
  7. #endif
  8.